Occurs after a user has updated a comment on a document in Meridian Explorer.
Function AIMS_UpdateComment (commentText As String, attachmentType As String, numberOfComments As Long)
|
Name |
Description |
|---|---|
|
commentText |
The text of the comment. |
|
attachmentType |
The type of file attached to the comment. The possible values are: 0 – No attachment |
|
numberOfComments |
The total number of comments on the document. |
Function AIMS_UpdateComment(commentText, attachmentType, numberOfComments)
Document.Log "A comment was updated for " + Document.FileName + vbNewLine + "Text: " + commentText
Select Case attachmentType
Case "Redline"
Document.Log "A redline markup was added to " + Document.FileName
Case "File"
Document.Log "A file was attached to " + Document.FileName
End Select
End Function
Related information